home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PD ROM 1
/
PD ROM Volume I - Macintosh Software from BMUG (1988).iso
/
Programming
/
Languages
/
Jeff Interpreter Docs
/
Function.Pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Pascal/Delphi Source File
|
1986-12-08
|
198 b
|
16 lines
|
[
TEXT/PASC
]
program PROG3;
var
A, B : Integer;
function F (X : Integer) : Integer;
begin (* dump1 *)
F := X * X; (* dump2 *)
end; (* F *)
begin
A := 5;
B := F(F(A));
WRITELN(B);
end. (* PROG3 *)